home *** CD-ROM | disk | FTP | other *** search
/ Joystick Magazine 1999 November / cd joystick no109 novembre 1999.iso / Data / sharewares / utilitaires / XQXSET50.ZIP / _SETUP.1 / XQ IE Trouble.xpl < prev    next >
Text File  |  1999-05-22  |  1KB  |  38 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="5"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Internet Explorer\Other"
  5. "NAME"="Troubleshooting"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Correct Channel Bar Position"
  8. "DESCRIPTION 1"="If your Channel Bar is missing, the position of it is maybe not correct. Click the first button to correct this."
  9. "AUTHOR"="Xteq Systems"
  10. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  11. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
  12. "COMMENT 2"="Version 1.2"
  13.  
  14.  
  15. sP="HKCU\Software\Microsoft\Internet Explorer\Channels"
  16. Sub Plugin_Initialize 
  17.  If RegPathExists(sp) then
  18.   'do nothing???
  19.  else
  20.   Disable
  21.  end if
  22. End Sub
  23.  
  24. Sub Plugin_CheckData(ElementIndex)
  25. End Sub
  26.  
  27. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  28.  If ElementIndex=1 then
  29.   If IsEmpty(RegReadValue(sp&"\Window_placement"))=false then
  30.    Call RegDeleteValue(sp&"\Window_placement")
  31.   end if
  32.   Call MsgInformation("Corrected")
  33.  end if 
  34. End Sub
  35.  
  36. Sub Plugin_Terminate 
  37. End Sub
  38.